home *** CD-ROM | disk | FTP | other *** search
/ Skunkware 5 / Skunkware 5.iso / src / Tools / sco / Unpackem < prev    next >
Text File  |  1995-05-03  |  417b  |  20 lines

  1. :
  2. # Unpackem - script to decompress and extract each of the source directories
  3. #    in the SkunkWare distribution. Written 29 Jun 1994 by Ronald Joe Record.
  4. #
  5.  
  6. SRC=/v/csc/usr/dist/src
  7.  
  8. DIRS="Games Tools X11"
  9.  
  10. for i in $DIRS
  11. do
  12.     cd $SRC/$i
  13.     for j in *.tar.Z
  14.     do
  15.         echo "Uncompressing, extracting and removing compressed tar archive of"
  16.         echo "$SRC/$i/$j source directory ..."
  17.         zcat $j | tar xf - && rm -f $j
  18.     done
  19. done
  20.